home *** CD-ROM | disk | FTP | other *** search
/ Professor Fernleaf from the Tropics / Professor Fernleaf from the Tropics.iso / pc / program / xtras / popup.x32 / TEXT / TEXT_HELP < prev    next >
Text File  |  1998-08-11  |  6KB  |  127 lines

  1. -----------------------
  2. Purchasing Popup Xtra
  3. -----------------------
  4.  
  5. To license Popup Xtra, please contact updateStage at
  6.  
  7. <sales@updatestage.com>
  8.  
  9. or by phone at:
  10.  
  11. (781) 641-6043
  12.  
  13.  
  14. You can also visit the updateStage website at:
  15.  
  16. Web: http://www.updatestage.com
  17.  
  18.  
  19. ------------------------
  20. Registering Popup Xtra
  21. ------------------------
  22.  
  23. To register Popup Xtra, choose "Popup Xtra-->Register" from the Xtras menu. You will be presented with a dialog box in which you should type your serial number. Although this writes a registration file to disk, you do not need to distribute any files with your projectors except for the actual Popup Xtra files.
  24.  
  25. -----------------------
  26. Installing Popup Xtra
  27. -----------------------
  28.  
  29. Popup Xtra consists of several files:
  30.  
  31. Authoring mode
  32. ----------------
  33. Popup Xtra      --    the Macintosh 68K and PowerPC Xtra
  34. Popup.x16      --    the 16-bit Windows Xtra
  35. Popup.x32      --    the 32-bit Windows Xtra
  36.  
  37. Runtime mode
  38. ------------
  39. Popup Xtra Runtime  --  the Macintosh 68K and PowerPC Xtra
  40. PopupR.x16      --    the 16-bit Windows Xtra
  41. PopupR.x32      --    the 32-bit Windows Xtra 
  42.  
  43.  
  44. You should use the authoring mode Xtras except when releasing a projector, Shockwave movie or some other runtime form AND you need to save disk space. The authoring mode Xtras work just fine in runtime mode.
  45.  
  46. Place the appropriate Xtra inside the Xtras folder which is located in the same directory as the Director application itself.
  47.  
  48.  
  49. ----------------------------
  50. Installing Popup Xtra Help
  51. ----------------------------
  52.  
  53. Popup Xtra Help comes in the form of a single help file which is a cross-platform HTML file:
  54.  
  55. helppopx.htm
  56.  
  57. This file should be placed in the same folder as the Popup Xtra.
  58.  
  59. --------------------------------------
  60. Using Popup Xtra -- A Quick Tutorial
  61. --------------------------------------
  62.  
  63. 1. From the Insert menu, choose "Red Eye Xtras-->Popup" and this will place a new Popup castmember into the current cast library.
  64.  
  65. 2. From the Insert menu, choose "Control-->Field" and this will place a new field castmember into the current cast library. You can use this field to create your menu definition.
  66.  
  67. 3. Double-click on the newly-created field castmember and name it "menu definition". You can call it anything you like. Now, define a Popup by placing the names of each menu item in the list. Each item should be separated by a return character.  To define a submenu, you should surround its menu items with the left and right square brace characters.
  68.  
  69. An example of a menu definition of food items with some submenus would be:
  70.  
  71. Bread
  72. Fruit[Bananas;Apples;Kiwi;Oranges]
  73. Cheese
  74. Vegetables[Carrots;Spinach;Cabbage]
  75. Eggs
  76.  
  77. In this example, the Fruit and Vegetables each have a submenu associated with them.
  78.  
  79. 4. After creating your menu definition, close the field window and double-click on the Popup castmember to access the Cast Properties dialog. Here, you can specify different options for the behavior and display of the Popup Xtra castmember.  The most important thing to do is to assign your menu definition to the Popup Xtra castmember.
  80.  
  81. In the upper-left corner of the Properties dialog, you will see a popup menu (Macintosh) or a combo box (Windows) indicating the cast library and the field castmember for the menu definition.  Assign this Popup castmember its menu definition by selecting the field castmember you just created.  Now close the Cast Properties dialog by clicking the Done button.
  82.  
  83. 5. Select the Popup castmember in the Cast window and name it "myPopup".
  84.  
  85. 6. Press the script button on the upper-right corner of the Cast window and locate the menuItemSelected script which was automatically created for you when you inserted the Popup castmember.  In this script, you will see Lingo similar to this:
  86.  
  87. on menuItemSelected me, menuSpec, menuText, memberRef
  88.      -- Insert your Lingo code here
  89. end menuItemSelected
  90.  
  91. Add the Lingo code to the menuItemSelected handler
  92.  
  93. on menuItemSelected me, menuSpec, menuText, memberRef
  94.      put "Menu item text selected was" && menuText
  95.      put "Menu spec selected was" && menuSpec
  96. end menuItemSelected
  97.  
  98.  
  99. The arguments to the handler have the following meaning:
  100.  
  101. -- 1st argument: the sprite reference
  102. -- 2nd argument: the selected menu item specification (same as the selectedSpec property)
  103. -- 3rd argument: the selected menu item text (same as the selectedText property)
  104. -- 4th argument: the castmember that was selected
  105.  
  106. You should always use the menuItemSelected castmember handler (or add your own menuItemSelected handler at the sprite level) to determine what selection has been made. Please note that this handler gets called only after a valid menu selection was made, not when the user has clicked on the Popup sprite.
  107.  
  108. Remember, this example is just to illustrate how get the menu item text and the menu item specification selections of a Popup castmember.  The menu item specification indicates the numerical positioning of the selected item.   If you are using submenus or have multiple menu items with the same text, you should use the menu item specification in favor of the menu item text to determine what the last selection was.
  109.  
  110. 7. Finally, drag the Popup castmember anywhere on the stage and run the movie. Try selected some items from the menu. Open the message window and you will see your menu selections as you make them.
  111.  
  112. -------------------------------------
  113. Additional Technical Support and Help
  114. -------------------------------------
  115.  
  116. You can invoke the on-line help system for Popup Xtra by choosing "Popup Xtra-->Help" from the Xtras menu. This will launch your web browser with the help file. If you are having trouble launching the browser, please launch it manually and open the file "helppopx.htm"
  117.  
  118. You can use the Message window to get a list of all of the Popup properties:
  119. put the propertyNames of member "myPopup"
  120.  
  121. You can also use the Message window to get a list of all of the Popup functions:
  122. put the functionNames of member "myPopup"
  123.  
  124. updateStage will respond to registered customers for all technical inquiries and licensing questions regarding Popup Xtra by e-mail at:
  125.  
  126. <support@updatestage.com>
  127.